JSONReporter.merge   A
last analyzed

Complexity

Conditions 1

Size

Total Lines 3
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 2
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
1
/* eslint-disable unicorn/filename-case */
2
import Reporter from './Reporter';
3
4
export default class JSONReporter extends  Reporter  {
5
    merge(renderedReports) {
6
        return JSON.stringify(renderedReports);
7
    }
8
}
9